* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #121212;
    color: white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #202020;
    padding: 10px 20px;
}

.logo-img {
    height: 100px;
}

.nav-bar button {
    background-color: #333;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    font-size: 16px;
    height: 60px;
    width: 200px;
}

.content {
    padding: 20px;
    margin-left: 5%;
    margin-right: 5%;
}

.card {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    max-height: 400px; /* Set the maximum height */
    margin: 16px 0;
}

.card .left {
    flex: 1;
    padding-right: 20px;
    background-color: #ff0000;
    color: black;
}

.Go-to-button{
    background-color: #121212;
    color: white;
}

.card-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.left {
    border-right: 1px solid #ddd;
}

.card .left img {
    width: 100px;
    display: block;
    margin-bottom: 10px;
}

.card .left p {
    margin-bottom: 20px;
}

.left, .right {
    flex: 1;
    padding: 16px;
    overflow-y: auto; /* Make content scrollable if it exceeds the max height */
}

.card .right {
    flex: 2;
    background-color: black;
    padding: 20px;
}

.card .right p {
    color: white;
    margin-bottom: 10px;
}

.card .rating {
    border: 2px solid red;
    padding: 10px;
    margin-bottom: 20px;
}

.card .rating p {
    margin-bottom: 10px;
}

.rating-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating-items span {
    color: yellow;
}

.reviews-btn {
    background-color: transparent;
    color: black;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.reviews-btn:hover {
    background-color: #444;
}

.reviews-btn, .rating button {
    margin-top: 16px;
    cursor: pointer;
}

.rating {
    display: flex;
    flex-direction: column;
}

.rating-items {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    padding: 20px;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
  }
  
  .popup input, .popup select, .popup textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .popup button {
    padding: 8px 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
  }
  